home *** CD-ROM | disk | FTP | other *** search
/ Megahits 3 / Megahits 3 (1994)(GTI - Rhein-Main-Soft)(DE)[!].iso / module / utilities / delitracker130 / rexx / dt_fadeout.rexx < prev    next >
OS/2 REXX Batch file  |  1994-10-14  |  213b  |  19 lines

  1. /* DeliTracker - toggles fadeout */
  2.  
  3. address 'rexx_DT'
  4.  
  5. options results
  6.  
  7.  
  8. status G fad
  9.  
  10. if result == "no" then do
  11.     fadeout yes
  12.     say "Fadeout is now on..."
  13. end
  14. else do
  15.     fadeout no
  16.     say "Fadeout is now off..."
  17. end
  18.  
  19.